home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 6047 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  658 b 

  1. Path: newsfeeds.ans.net!btco!btco3!newsadm
  2. From: Dave Mx
  3. Newsgroups: comp.lang.c
  4. Subject: How do I use abs() on floats ?
  5. Date: 22 Feb 1996 11:37:36 GMT
  6. Organization: Bank
  7. Message-ID: <4ghki0$b44@LNCSEX0003.eu.btco.com>
  8. NNTP-Posting-Host: lngibw1334.eu.btco.com
  9. X-Newsreader: SPRY News 3.03 (SPRY, Inc.)
  10.  
  11. What's the easiest way to get the absolute scalar value of a float.
  12. I need to test to see of a variable is 'bigger' than a certain tolerance.
  13.  
  14. e.g.
  15.  
  16. if ( abs (error__float)  > MAX_TOLERANCE )   printf ( "Tolerance level exceeded \n" );
  17.  
  18.  
  19. BUT the abs() function says it only works on int 's . Any ideas how to do it for floats in the most elegant way ???
  20.